home *** CD-ROM | disk | FTP | other *** search
- Date: March, 1. 1995
-
-
-
- LogicBBS v1.0 BETA
- <----------------->
- LITE VERSION
-
- Copyright 1995 ParCon Software
-
-
- System/node/door/library/AIM-XIM support programmed by Michael Pendec
- Filechecker/Arexxdoor support programmed by Nicholas Clarke
- All Testing was done by friends. Ideas supplied by various people.
-
-
- Read "HowToOrder.doc", if you want to get the FINAL version.
- -----------------------------------------------------------------------------
-
-
-
-
- PC ANSI support
- -----------------------------------------------------------------------------
-
-
- The PC is using a quite unique way of making ansi available to users,
- Without having them entering REAL ansi codes.
- We have supported the method in LogicBBS. Our knowledge of the way
- the PC converts the NON-ANSI codes, is still limited. At the current stage
- we have included the support for colorizing your text.
- Note, at each linefeed / carriage return, colors will be reset to default,
- when a Ansi sequence is entered. LogicBBS will strip these indicators if
- user selected Ansi off.
-
- The PC uses two character indicators:-> @X <-: which means, here comes an
- ansicolor sequence. Next is a hexadecimal value of 1 byte, written as ascii.
-
- Hexadecimal table: 0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F,10,11,...etc...
-
-
- All you need to know/learn are:
-
- @X01 : Set pen-color 1 (Forground color)
- : You can choose between 0-7 (8-F is only supported by PC)
- : ie. @X00,@X01,@X02,@X03,@X04,@X05,@X06,@X07
-
- @X12 : Set block-color 2 (background color)
- : You can choose between 0-7 (8-F is only supported by PC)
-
-
- So,
- If you want to display your text with colors, you must edit the text like this.
-
- @X02@X11THIS IS A TEST
-
- Above line will be displayed with pen-color 2,block-color 1.
-
-